home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / dpmigcc5.zip / RSX / SOURCE / DJLIBRSX / SIGNAL.S < prev    next >
Text File  |  1994-05-27  |  221b  |  14 lines

  1. /    int signal ( int signal , sig_h handler )
  2.  
  3.     .globl    _signal
  4. _signal:
  5.     movl    4(%esp), %ecx
  6.     movl    8(%esp), %edx
  7.     movw    $0x7f0c, %ax
  8.         int     $0x21
  9.     cmpl    $-1, %eax
  10.     jne    1f
  11.     movl    $22, _errno
  12. 1:
  13.         ret
  14.